home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / program / ixemlsrc.lha / ixemul / network / Makefile.in < prev    next >
Makefile  |  1995-12-23  |  2KB  |  71 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir =    @srcdir@
  4.  
  5. ifeq ($(srcdir),.)
  6. srcdir = ../../..
  7. endif
  8.  
  9. VPATH :=    $(srcdir)
  10.  
  11. # Common prefix for machine-independent installed files.
  12. prefix =    @prefix@
  13.  
  14. # Common prefix for machine-dependent installed files.
  15. exec_prefix =    @exec_prefix@
  16.  
  17. bindir =    $(exec_prefix)/bin
  18. libdir =    $(exec_prefix)/Sys/libs
  19.  
  20. INSTALL =    @INSTALL@
  21. INSTALL_DATA =    @INSTALL_DATA@
  22.  
  23. CC =        @CC@
  24.  
  25. CFLAGS =    @CFLAGS@
  26. LDFLAGS =    @LDFLAGS@
  27.  
  28. RANLIB =    @RANLIB@
  29. AR =        ar
  30.  
  31. #### End system configuration section ####
  32.  
  33. FLAVOR_CFLAGS =    -m$(CPU) -m$(FPU) -f$(BASE)
  34. OTHER_CFLAGS =    -fomit-frame-pointer
  35. ALL_CFLAGS =    $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS)
  36.  
  37. INCS =        -nostdinc -I/gnu/os-include -I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include
  38. LIB =        libnet.a
  39. SHELL =        /bin/sh
  40.  
  41. .c.o:
  42.         $(CC) $(ALL_CFLAGS) -c $< -o $@
  43.  
  44. SRC =    big.c bigkey.c btree.c buf.c delete.c dynahash.c getgrent.c \
  45.     gethostnamadr.c getlogin.c getnetbyaddr.c getnetbyname.c getnetent.c \
  46.     getpass.c getproto.c getprotoent.c getprotoname.c getpwent.c \
  47.     getservbyname.c getservbyport.c getservent.c getttyent.c getusershell.c \
  48.     herror.c hfunc.c hsearch.c htonl.c htons.c inet_addr.c inet_lnaof.c \
  49.     inet_makeaddr.c inet_netof.c inet_network.c inet_ntoa.c initgroups.c \
  50.     insert.c log2.c lrucache.c lruhash.c lrutils.c ndbm.c ntohl.c ntohs.c \
  51.     page.c rcmd.c res_comp.c res_debug.c res_init.c res_mkquery.c res_query.c \
  52.     res_send.c search.c seq.c sethostent.c split.c storage.c syslog.c ttyname.c     ttyslot.c        updutils.c       utils.c
  53.  
  54. OBJ =    $(SRC:.c=.o)
  55.  
  56. libnet.a:    $(OBJ)
  57.         rm -f $@
  58.         $(AR) rv $@ $(OBJ)
  59.         $(RANLIB) $@
  60.  
  61. clean:
  62.         rm -rf *baserel
  63.  
  64. clobber:    clean
  65.         rm -f Makefile
  66.  
  67. dep: $(SRC)
  68.     $(CC) >deps -MM $(INCS) $(SRC)
  69.     
  70. #########################################################################
  71.